home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 20 / 9 / DISK2092.ZIP / RBBS-LIT.ZIP / LIT / FOSSIL12.LIT < prev    next >
Text File  |  1990-01-13  |  1KB  |  28 lines

  1. *[FOSSIL12.LIT]***************************************************************
  2. * Description: Removes support for FOSSIL                                    *
  3. * RBBS-PC Level: CPC17.3                                                √ AM *
  4. * Module Affected: RBBSSUB1.BAS                                              *
  5. * Selection Option: FOSSIL = OFF                                             *
  6. * Additional files: FOSSIL11.LIT,FOSSIL13.LIT                                *
  7. ******************************************************************************
  8. 20308 ' $SUBTITLE: 'FlushCom -- subroutine reads all char. from  comm. port'
  9. ' $PAGE
  10. '
  11. '  NAME -- FlushCom
  12. '
  13. '  INPUTS --   PARAMETER     MEANING
  14. '              STrng$       STRING TO READ CHARACTERS INTO FROM
  15. '                           THE COMMUNICATIONS PORT (FILE #3)
  16. '
  17. '  OUTPUTS --   Strng$
  18. '
  19. '  PURPOSE -- Reads all characters from the communications port.
  20. '
  21.       SUB FlushCom (Strng$) STATIC
  22.       ON ERROR GOTO 65000
  23.       IF ZLocalUser THEN _
  24.          EXIT SUB
  25.       Strng$ = ""
  26. 20310
  27.  
  28.